home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hardcore Visual Basic 5.0 (2nd Edition)
/
Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso
/
Code
/
Shared.cls
< prev
next >
Wrap
Text File
|
1997-06-14
|
551b
|
27 lines
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "GShared"
Attribute VB_GlobalNameSpace = True
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
' Put public properties that delegate shared data here
Property Get System() As CSystem
Set System = MShared.System
End Property
Property Get Video() As CVideo
Set Video = MShared.Video
End Property
Property Get Keyboard() As CKeyboard
Set Keyboard = MShared.Keyboard
End Property